+2008-12-26 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkentry.c: Emit property notification for the text-length
+ property.
+
2008-12-26 Matthias Clasen <mclasen@redhat.com>
* demos/gtk-demo/search_entry.c: Add a demo for new entry features.
* GtkEntry::icon-pressed:
* @entry: The entry on which the signal is emitted
* @icon_pos: The position of the clicked icon
- * @buttomotione mouse button clicked
+ * @event: the button press event
*
* The ::icon-pressed signal is emitted when an icon is clicked.
*
* GtkEntry::icon-released:
* @entry: The entry on which the signal is emitted
* @icon_pos: The position of the clicked icon
- * @button: The mouse button clicked
+ * @event: the button release event
*
* The ::icon-released signal is emitted on the button release from a
* mouse click.
emit_changed (entry);
g_object_notify (G_OBJECT (editable), "text");
+ g_object_notify (G_OBJECT (editable), "text-length");
}
static void
emit_changed (entry);
g_object_notify (G_OBJECT (editable), "text");
+ g_object_notify (G_OBJECT (editable), "text-length");
}
}